home *** CD-ROM | disk | FTP | other *** search
- supdict begin
- /teethsize
- { dy teeth div } def
- /drawtooth
- { dx teethsize 2 div rlineto
- dx neg teethsize 2 div rlineto } def
- /teethloop
- { teeth { drawtooth } repeat } def
- /sfx
- { x1 x2 add dx div } def
- /sfy
- { y1 y2 add dy div } def
- end
- /tigerteeth
- {
- supdict begin
- q newinside
- /color xdf
- colorchoice
- /color xdf
- /angle xdf
- /teeth xdf
-
-
- dx 2 div dy 2 div translate
- angle rotate
- sfx sfy scale
- /xstart dx 2 div neg def
- /ystart dy 2 div neg def
- backgnd
- colorchoice
- xstart ystart m teethloop fill
- Q end
- } def